home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / clipper / ks94an.zip / FOUT.HDR < prev    next >
Text File  |  1994-04-25  |  1KB  |  43 lines

  1. /******************************************************************************
  2.                  The Klipper Library, for CA-Clipper 5.x
  3.         Copyright (c), 1994, Wallace Information Systems Engineering
  4.  
  5. FUNCTION:
  6.  
  7. _FOut( cFieldName, cPassword ) --> cDBFieldData
  8.  
  9. PARAMETERS:
  10.  
  11. cFieldName : Field name to retrieve contents from
  12. cPassword  : Encryption password (Optional
  13.  
  14. SHORT:
  15.  
  16. Retrieve a database field written by _FIn() with optional decryption.
  17.  
  18. DESCRIPTION:
  19.  
  20. _FOut() reads a database field, optionally decrypting with the contents of
  21. cPassword (if specified).
  22.  
  23. If cPassword is no specified, the contents of the field are returned "as is."
  24.  
  25. NOTE:
  26.  
  27. See _FIn() for more information.
  28.  
  29. EXAMPLE:
  30.  
  31. _Fout('CustName','PASSWORD')
  32.  
  33. Result: the contents of the CustName field are returned after being decrypted
  34. with the "PASSWORD" password.
  35.  
  36. If the password was not specified when _FIn() was used, then it should not be
  37. specified for _FOut().
  38.  
  39. Passwords is passwords, after all.  By the way, passwords are ALWAYS case
  40. sensitive!
  41.  
  42. ******************************************************************************/
  43.